home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Tool Chest / Dev.CD Feb 97 TC.toast / Sample Code / Interapplication Communication / MenuScripter 4.0 / Sources / MSAEMove.h < prev    next >
Encoding:
Text File  |  1996-07-09  |  640 b   |  24 lines  |  [TEXT/CWIE]

  1. // MSAEMove.h
  2. //
  3. // Original version by Jon Lansdell and Nigel Humphreys.
  4. // 4.0 and 3.1 updates by Greg Sutton.
  5. // ©Apple Computer Inc 1996, all rights reserved.
  6.  
  7. #ifndef __MSAEMOVE__
  8. #define __MSAEMOVE__
  9.  
  10. #include <AppleEvents.h>
  11. #include <AEObjects.h>
  12. #include <AERegistry.h>
  13.  
  14. #include "MSToken.h"
  15.  
  16.  
  17. pascal OSErr    DoMove(const AppleEvent *theAppleEvent, AppleEvent *reply, long  handlerRefCon);
  18.  
  19. OSErr            MoveTextToken(TextToken* token, AEDesc* insertHereDesc, AEDesc* result);
  20. OSErr            MoveTextDesc(AEDesc* textDesc, AEDesc* insertHereDesc, AEDesc* result);
  21. OSErr            MoveDesc(AEDesc* aDesc, AEDesc* insertHereDesc, AEDesc* result);
  22.  
  23. #endif
  24.